home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Auge 4000 / Auge 4000 #46 (1990-06-21)(Amiga User Gruppe Einzugsgebiet 4000).zip / Auge 4000 #46 (1990-06-21)(Amiga User Gruppe Einzugsgebiet 4000).adf / examples / hello.c < prev   
C/C++ Source or Header  |  1990-06-20  |  73b  |  12 lines

  1.  
  2. /*
  3.  *  HELLO.C
  4.  */
  5.  
  6. main()
  7. {
  8.     puts("hello world");
  9.     return(0);
  10. }
  11.  
  12.